home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat2 / mknod.0 < prev    next >
Text File  |  1996-09-01  |  3KB  |  81 lines

  1.  
  2. MKNOD(2)                   UNIX Programmer's Manual                   MKNOD(2)
  3.  
  4. NNAAMMEE
  5.      mmkknnoodd - make a special file node
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<uunniissttdd..hh>>
  9.  
  10.      _i_n_t
  11.      mmkknnoodd(_c_o_n_s_t _c_h_a_r _*_p_a_t_h, _m_o_d_e___t _m_o_d_e, _d_e_v___t _d_e_v)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The device special file _p_a_t_h is created with the major and minor device
  15.      numbers extracted from _m_o_d_e_. The access permissions of _p_a_t_h are descen-
  16.      dant from the umask(2) of the parent process.
  17.  
  18.      If _m_o_d_e indicates a block or character special file, _d_e_v is a configura-
  19.      tion dependent specification of a character or block I/O device and the
  20.      superblock of the device.  If _m_o_d_e does not indicate a block special or
  21.      character special device, _d_e_v is ignored.
  22.  
  23.      MMkknnoodd() requires super-user privileges.
  24.  
  25. RREETTUURRNN VVAALLUUEESS
  26.      Upon successful completion a value of 0 is returned.  Otherwise, a value
  27.      of -1 is returned and _e_r_r_n_o is set to indicate the error.
  28.  
  29. EERRRROORRSS
  30.      MMkknnoodd() will fail and the file will be not created if:
  31.  
  32.      [ENOTDIR]     A component of the path prefix is not a directory.
  33.  
  34.      [ENAMETOOLONG]
  35.                    A component of a pathname exceeded {NAME_MAX} characters,
  36.                    or an entire path name exceeded {PATH_MAX} characters.
  37.  
  38.      [ENOENT]      A component of the path prefix does not exist.
  39.  
  40.      [EACCES]      Search permission is denied for a component of the path
  41.                    prefix.
  42.  
  43.      [ELOOP]       Too many symbolic links were encountered in translating the
  44.                    pathname.
  45.  
  46.      [EPERM]       The process's effective user ID is not super-user.
  47.  
  48.      [EIO]         An I/O error occurred while making the directory entry or
  49.                    allocating the inode.
  50.  
  51.      [ENOSPC]      The directory in which the entry for the new node is being
  52.                    placed cannot be extended because there is no space left on
  53.                    the file system containing the directory.
  54.  
  55.      [ENOSPC]      There are no free inodes on the file system on which the
  56.                    node is being created.
  57.  
  58.      [EDQUOT]      The directory in which the entry for the new node is being
  59.                    placed cannot be extended because the user's quota of disk
  60.                    blocks on the file system containing the directory has been
  61.                    exhausted.
  62.  
  63.      [EDQUOT]      The user's quota of inodes on the file system on which the
  64.  
  65.  
  66.                    node is being created has been exhausted.
  67.  
  68.      [EROFS]       The named file resides on a read-only file system.
  69.  
  70.      [EEXIST]      The named file exists.
  71.  
  72.      [EFAULT]      _P_a_t_h points outside the process's allocated address space.
  73.  
  74. SSEEEE AALLSSOO
  75.      chmod(2),  stat(2),  umask(2)
  76.  
  77. HHIISSTTOORRYY
  78.      A mmkknnoodd() function call appeared in Version 6 AT&T UNIX.
  79.  
  80. 4th Berkeley Distribution        June 4, 1993                                2
  81.